Skip to main content

Pull only one column of data from the DataGrid in the stream

'''csharp using System.Collections; using System.Collections.Generic;

public void Function1_Execute(object sender, OnExecuteEventArguments args) { List<object> approvalStatusList = Document1.GetDataGridCellValues("DataGrid1", "approvalStatus"); LogExtension.Log("approvalStatusList.Count ->" + approvalStatusList.Count, args. Context); }